View Javadoc

1   /*
2    * Created on 08-Feb-2005
3    *
4    * @todo To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
6    */
7   package uk.ac.roe.antigen.builder;
8   
9   import java.util.Vector;
10  
11  /***
12   * @author jdt
13   *
14   * @todo To change the template for this generated type comment go to
15   * Window - Preferences - Java - Code Style - Code Templates
16   */
17  public interface TargetChooser {
18      final String ANTIGEN_TARGET_ = "antigen.target.";
19      public static final String ANTIGEN_TARGETS = "antigen.targets";
20  	/***
21  	 * Display the dialog and return an array of the selected options
22  	 * 
23  	 * @return
24  	 */
25  	public abstract Vector showAndWaitForResponse();
26  }